home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / linux / numa.h < prev    next >
C/C++ Source or Header  |  2005-10-13  |  258b  |  17 lines

  1. #ifndef _LINUX_NUMA_H
  2. #define _LINUX_NUMA_H
  3.  
  4. #include <linux/config.h>
  5.  
  6. #ifdef CONFIG_DISCONTIGMEM
  7. #include <asm/numnodes.h>
  8. #endif
  9.  
  10. #ifndef NODES_SHIFT
  11. #define NODES_SHIFT     0
  12. #endif
  13.  
  14. #define MAX_NUMNODES    (1 << NODES_SHIFT)
  15.  
  16. #endif /* _LINUX_NUMA_H */
  17.